-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
homeassistant: Migrate to ujson & numpy using pip #5096
Conversation
Found hints of where the issue is: wheels build flags not being passed post EDIT: It ends-up a few DSM-7 archs still uses gcc 4.x resulting in a need to handle |
Maybe also patch Python to 3.10.2? It was a Hotfix because of a memory leak. |
That will be part of another PR as I want to limit the scope of this one. |
Description
Pursuing work on migrating all python dependencies to regular
pip
building. In this specific case trying to solve two issues:ujson
which in turns requiressetuptools-scm
to be added to thecrossenv
. Hint provided by upstream through Could not find a version that satisfies the requirement ujson==5.1.0 ultrajson/ultrajson#496numpy
to standardize it usingpip
build process instead ofcross/numpy
. Note that ARMv5 still require code fix BUG: Allow using -std=c++0x on older compilers numpy/numpy#20664 but support for such old compiler is expected to end real soon.Checklist
all-supported
completed successfullyType of change